home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1999 March / EnigmA AMIGA RUN 35 (1999)(G.R. Edizioni)(IT)[!][issue 1999-03].iso / earcd / devel / libx11 / include / xm / bulletinb.h < prev    next >
C/C++ Source or Header  |  1999-01-01  |  2KB  |  62 lines

  1. /* 
  2.  * (c) Copyright 1989, 1990, 1991, 1992 OPEN SOFTWARE FOUNDATION, INC.
  3.  * ALL RIGHTS RESERVED
  4. */ 
  5. /*   $RCSfile: BulletinB.h,v $ $Revision: 1.10 $ $Date: 92/05/14 12:48:07 $ */
  6. /*
  7. *  (c) Copyright 1989, DIGITAL EQUIPMENT CORPORATION, MAYNARD, MASS. */
  8. /*
  9. *  (c) Copyright 1987, 1988, 1989, 1990, 1991, 1992 HEWLETT-PACKARD COMPANY */
  10. #ifndef _XmBulletinBoard_h
  11. #define _XmBulletinBoard_h
  12.  
  13. #include <Xm/Xm.h>
  14.  
  15. #ifdef __cplusplus
  16. extern "C" {
  17. #endif
  18.  
  19. /* Class record constants */
  20.  
  21. externalref WidgetClass xmBulletinBoardWidgetClass;
  22.  
  23. typedef struct _XmBulletinBoardClassRec * XmBulletinBoardWidgetClass;
  24. typedef struct _XmBulletinBoardRec      * XmBulletinBoardWidget;
  25.  
  26.  
  27. #ifndef XmIsBulletinBoard
  28. #define XmIsBulletinBoard(w)  (XtIsSubclass (w, xmBulletinBoardWidgetClass))
  29. #endif
  30.  
  31.  
  32.  
  33. /********    Public Function Declarations    ********/
  34. #ifdef _NO_PROTO
  35.  
  36. extern Widget XmCreateBulletinBoard() ;
  37. extern Widget XmCreateBulletinBoardDialog() ;
  38.  
  39. #else
  40.  
  41. extern Widget XmCreateBulletinBoard( 
  42.                         Widget p,
  43.                         String name,
  44.                         ArgList args,
  45.                         Cardinal n) ;
  46. extern Widget XmCreateBulletinBoardDialog( 
  47.                         Widget ds_p,
  48.                         String name,
  49.                         ArgList bb_args,
  50.                         Cardinal bb_n) ;
  51.  
  52. #endif /* _NO_PROTO */
  53. /********    End Public Function Declarations    ********/
  54.  
  55.  
  56. #ifdef __cplusplus
  57. }  /* Close scope of 'extern "C"' declaration which encloses file. */
  58. #endif
  59.  
  60. #endif /* _XmBulletinBoard_h */
  61. /* DON'T ADD ANYTHING AFTER THIS #endif */
  62.